home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinXP Thumbnail 2.xpl < prev    next >
Text File  |  2002-11-01  |  1KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Explorer\Settings"
  5. "NAME"="Thumbnails Enabled"
  6. "VERSION"="1.00"
  7. "LANGUAGE"="VBScript"
  8. "OSVERSION"="0000011"
  9. "TEXT 1"="Enable creating thumbnails"
  10. "DESCRIPTION 1"="By default, Windows creates thumbnails for each pictures in every folder you view using Explorer."
  11. "DESCRIPTION 2"="If this option is deactivated, Windows will not create any thumbnails and thus disabling this option saved you disk space."
  12. "DESCRIPTION 3"="However, if you view a folder with folder in it with the new "Thumbnail View" you will notice that it take a little bit longer since Windows can no longer access pre-created thumbnails but instead needs to read the pictures directly."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18.  
  19.  
  20. sV1="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\DisableThumbnailCache" 'DW
  21. Sub Plugin_Initialize 
  22.  i=RegReadValue(sV1)
  23.  if i=0 or IsEmpty(i)=true then SetUIElement 1,true
  24. End Sub
  25.  
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30.  
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  b=GetUIElement(1)
  34.  if b=true then
  35.     If RegValueExists(sV1) then Call RegDeleteValue(sV1)
  36.  else
  37.     Call RegWriteValue(sV1,1,2)
  38.  end if
  39.  
  40.  Call Logoff()
  41. End Sub
  42.  
  43.  
  44. Sub Plugin_Terminate 
  45. End Sub
  46.  
  47.  
  48.  
  49.